home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global isComingFromASC
- preLoad(7)
- cursor(-1)
- if isComingFromASC then
- puppetSound(0)
- updateStage()
- else
- doMusicGeneral()
- end if
- hideMaxMenuGall()
- set the cursor of sprite 19 to -1
- end
-
- on idle
- testMaxRolloverGall()
- testQuitRolloverGall()
- end
-
- on doDeskTopInstall star, fromOs
- case fromOs of
- "WIN":
- case star of
- "KAY":
- set nomeImm to "07-KAYRS.BMP 0"
- "ZUL":
- set nomeImm to "02-ZULES.BMP 0"
- "ALB":
- set nomeImm to "05-ALBAS.BMP 0"
- end case
- if IsWindows95() then
- set nomeDir to "DESK32WI\"
- open(the moviePath & nomeDir & "CHGWALLP.EXE" && nomeImm)
- alert("Le modifiche avranno effetto al riavvio.")
- else
- set nomeAppl to "DESKTOP.EXE"
- case star of
- "KAY":
- open("07-KAYRS.BMP", nomeAppl)
- "ZUL":
- open("02-ZULES.BMP", nomeAppl)
- "ALB":
- open("05-ALBAS.BMP", nomeAppl)
- end case
- end if
- "MAC":
- set nomeDir to "DESK16MA:"
- case star of
- "KAY":
- set nomeAppl to "DESKKAY"
- "ZUL":
- set nomeAppl to "DESKZUL"
- "ALB":
- set nomeAppl to "DESKALB"
- end case
- open(the moviePath & nomeDir & nomeAppl)
- end case
- end
-